package testcase.f_servicehijacking_02; import android.os.Bundle; import android.os.IBinder; import android.app.Activity; import android.app.Service; import android.content.Intent; import android.util.Log; import android.view.Menu; public class TestService extends Service { @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } @Override public void onStart(Intent intent, int startId) { // TODO Auto-generated method stub super.onStart(intent, startId); } }